home *** CD-ROM | disk | FTP | other *** search
/ IRIS Performer 2.2 Friends Demo / SGI IRIS Performer 2.2 Friends Demo.iso / friends / devices / BGSystems / bg / Makefile < prev    next >
Makefile  |  1997-10-31  |  1KB  |  56 lines

  1. #! /bin/make -f
  2. #
  3. #
  4.  
  5. LD = cc
  6. CC = cc
  7.  
  8. CFLAGS= -c -g $(XFLAGS) -fullwarn
  9. LDFLAGS= $(XFLAGS)
  10.  
  11. LVLIB = lv3.a
  12. .c.o:
  13.     $(CC) $(CFLAGS) $<
  14.  
  15. SRC = \
  16.     check_rev.c \
  17.     convert.c \
  18.     init_lv.c \
  19.     open_lv.c \
  20.     pack.c \
  21.     read_write.c
  22.  
  23. OBJ = \
  24.     check_rev.o \
  25.     convert.o \
  26.     init_lv.o \
  27.     open_lv.o \
  28.     pack.o \
  29.     read_write.o
  30.  
  31. default: lib
  32.  
  33. lib: $(OBJ)
  34.     ar -rv lv3.a $(OBJ)
  35.  
  36. # DO NOT DELETE THIS LINE -- make depend depends on it.
  37.  
  38. check_rev.o: /usr/include/stdio.h /usr/include/stdlib.h
  39. check_rev.o: /usr/include/sgidefs.h /usr/include/unistd.h
  40. check_rev.o: /usr/include/string.h lv3.h /usr/include/time.h
  41. convert.o: /usr/include/stdio.h lv3.h /usr/include/time.h
  42. init_lv.o: /usr/include/stdio.h /usr/include/stdlib.h /usr/include/sgidefs.h
  43. init_lv.o: lv3.h /usr/include/time.h
  44. open_lv.o: /usr/include/stdio.h /usr/include/stdlib.h /usr/include/sgidefs.h
  45. open_lv.o: /usr/include/unistd.h /usr/include/sys/ioctl.h
  46. open_lv.o: /usr/include/sys/ioccom.h /usr/include/net/soioctl.h
  47. open_lv.o: /usr/include/sys/termio.h /usr/include/sys/termios.h
  48. open_lv.o: /usr/include/sys/ttydev.h /usr/include/sys/types.h
  49. open_lv.o: /usr/include/sys/bsd_types.h /usr/include/sys/select.h
  50. open_lv.o: /usr/include/sys/stat.h /usr/include/sys/time.h
  51. open_lv.o: /usr/include/fcntl.h /usr/include/sys/fcntl.h
  52. open_lv.o: /usr/include/termio.h lv3.h /usr/include/time.h
  53. pack.o: /usr/include/stdio.h lv3.h /usr/include/time.h
  54. read_write.o: /usr/include/stdio.h /usr/include/string.h
  55. read_write.o: /usr/include/unistd.h lv3.h /usr/include/time.h
  56.